home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / dev / e / capus2.lha / capus2 / UserStartup / Sources / PModules.Lha / PModules / epp / cSkipToChar.e < prev    next >
Encoding:
Text File  |  1994-03-22  |  240 b   |  12 lines

  1. OPT TURBO
  2.  
  3. PROC cSkipToChar (char, pos : PTR TO CHAR)
  4.   /* Finds the specified character in theString and returns its position. */
  5.   WHILE pos []
  6.     IF pos [] = char THEN RETURN pos
  7.     INC pos
  8.   ENDWHILE
  9. ENDPROC  pos
  10.   /* cSkipToChar */
  11.  
  12.